home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19970929-19971216 / 000070_news@newsmaster….columbia.edu _Thu Oct 9 08:44:08 1997.msg < prev    next >
Internet Message Format  |  1997-12-15  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id IAA03744
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 9 Oct 1997 08:44:07 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id IAA23031
  7.     for kermit.misc@watsun; Thu, 9 Oct 1997 08:44:07 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Kermit 2.32 How to auto answer my remote system
  12. Date: 9 Oct 1997 12:44:06 GMT
  13. Organization: Columbia University
  14. Lines: 49
  15. Message-ID: <61ijim$snt$1@apakabar.cc.columbia.edu>
  16. References: <876209123.10362@dejanews.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7844
  19.  
  20. In article <876209123.10362@dejanews.com>,  <weldata@compuserve.com> wrote:
  21. : I want to create a Remote -Kermit- based Server, where I can login
  22. : locally (All PC's). I'm using the 2.32 kermit version.
  23. >From 1988?  But this is 1997.  Are you an antique software collector?
  24. Why don't you try this year's model?
  25.  
  26.   http://www.columbia.edu/kermit/mskermit.html
  27.  
  28. : The remote PC has to obey the local PC. e.g. The local PC has to send &
  29. : Recieve files from the remote system. The Remote System has to obey all
  30. : commands initiating by the local PC.
  31. : I want to create the following configuration:
  32. : - The remote system (PC) must be set to auto-answer the  ANSWER-command
  33. : will not work because of the older -2.32- version  we use); - What
  34. : commands do I have to use on both sides, when auto answer is  established
  35. : on the remote side, for up/down loading files.
  36. There is an entire manual to explain all of this.
  37.  
  38. In MS-DOS Kermit, all modem interactions are done by scripts or by hand.
  39. You'll need to "manually" (or by script) put the modem in answer mode;
  40. usually the command is:
  41.  
  42.   ATS0=1
  43.  
  44. when the call comes in (when the CONNECT message appears), then enter
  45. server mode.  Example (for MS-DOS Kermit 3.15):
  46.  
  47.   cd xxx       ; Change to desired directory
  48.   
  49.   ; Put server and other Kermit configuration commands here.
  50.   ;
  51.   ; Send any desired modem configuration commands here, then...
  52.   ;
  53.   output ATS0=1\13
  54.   input 2 OK
  55.   if fail stop 1 No response from modem
  56.   echo Waiting for call...
  57.   while true {
  58.       input 600 CONNECT
  59.       if fail echo Still waiting...      
  60.       break
  61.   }
  62.   server
  63.  
  64. - Frank